home *** CD-ROM | disk | FTP | other *** search
/ Merciful 1 / Merciful - Disc 1.iso / software / a / asm_one / asm-onev1.25c.dms / in.adf / Release3.0 / Include3.0.lha / Include3.0 / prefs / palette.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-24  |  971 b   |  48 lines

  1. #ifndef PREFS_PALETTE_H
  2. #define PREFS_PALETTE_H
  3. /*
  4. **    $VER: palette.h 39.2 (15.06.92)
  5. **    Includes Release 39.108
  6. **
  7. **    File format for palette preferences
  8. **
  9. **    (C) Copyright 1992 Commodore-Amiga, Inc.
  10. **    All Rights Reserved
  11. */
  12.  
  13. /*****************************************************************************/
  14.  
  15.  
  16. #ifndef EXEC_TYPES_H
  17. #include <exec/types.h>
  18. #endif
  19.  
  20. #ifndef LIBRARIES_IFFPARSE_H
  21. #include <libraries/iffparse.h>
  22. #endif
  23.  
  24. #ifndef INTUITION_INTUITION_H
  25. #include <intuition/intuition.h>
  26. #endif
  27.  
  28.  
  29. /*****************************************************************************/
  30.  
  31.  
  32. #define ID_PALT MAKE_ID('P','A','L','T')
  33.  
  34.  
  35. struct PalettePrefs
  36. {
  37.     LONG         pap_Reserved[4];     /* System reserved           */
  38.     UWORD         pap_4ColorPens[32];
  39.     UWORD         pap_8ColorPens[32];
  40.     struct ColorSpec pap_Colors[32];     /* Used as full 16-bit RGB values */
  41. };
  42.  
  43.  
  44. /*****************************************************************************/
  45.  
  46.  
  47. #endif /* PREFS_PALETTE_H */
  48.